SQL Table Value Constructor – SELECT Statement (Create a Table With Value Generated By My Self)


/** Create a Table With Value Generated By My Self **/
SELECT * FROM 
(VALUES 
    /** First Value, Second Value In A Row**/
    ('David', 25),
    ('Brown', 26),
    ('Alex', 22)

) /** First Column Name, Second Column Name**/
as E(FirstName, Age);
#SQL #Table Value Constructor #SELECT Statement






你可能感興趣的文章

[Alpha Camp] 學期2-1 回顧

[Alpha Camp] 學期2-1 回顧

Fetch 與 Promise (四):淺談 Promise

Fetch 與 Promise (四):淺談 Promise

Git 版本控制入門(2)- branch

Git 版本控制入門(2)- branch






留言討論